/* ============================================== Tracking ============================================================== */

.bodyTrack {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.containerTrack {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
    color: #6b21a8;
}

.header p {
    color: #666;
    font-size: 14px;
}

.timeline {
    position: relative;
    margin-left: 40px;
    padding-left: 20px;
    border-left: 2px solid #ddd;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease-out forwards;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.3s;
}

.step:nth-child(3) {
    animation-delay: 0.5s;
}

.step:nth-child(4) {
    animation-delay: 0.7s;
}

.step:nth-child(5) {
    animation-delay: 0.9s;
}

.step:nth-child(6) {
    animation-delay: 1.2s;
}

.step:nth-child(7) {
    animation-delay: 1.5s;
}

.step:nth-child(8) {
    animation-delay: 1.8s;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    background: #6b21a8;
    margin-right: 15px;
    flex-shrink: 0;
}

.inactive .circle {
    background: #ccc;
}

.step .content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.step .content p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #666;
}

.inactive h3,
.inactive p {
    color: #aaa;
}

.button {
    text-align: center;
    margin-top: 40px;
}

.button button {
    background: #6b21a8;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.button button:hover {
    background: #581c87;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================== Tracking ============================================================== */